home *** CD-ROM | disk | FTP | other *** search
/ One Click 11 / OneClick11.iso / Bancos de Dados / Conversao / Mysql2Excel / Setup.exe / Mysql2Excel.exe / pywin / mfc / thread.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2003-06-23  |  1.4 KB  |  34 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.2)
  3.  
  4. import object
  5. import win32ui
  6.  
  7. class WinThread(object.CmdTarget):
  8.     
  9.     def __init__(self, initObj = None):
  10.         if initObj is None:
  11.             initObj = win32ui.CreateThread()
  12.         
  13.         object.CmdTarget.__init__(self, initObj)
  14.  
  15.     
  16.     def InitInstance(self):
  17.         pass
  18.  
  19.     
  20.     def ExitInstance(self):
  21.         pass
  22.  
  23.  
  24.  
  25. class WinApp(WinThread):
  26.     
  27.     def __init__(self, initApp = None):
  28.         if initApp is None:
  29.             initApp = win32ui.GetApp()
  30.         
  31.         WinThread.__init__(self, initApp)
  32.  
  33.  
  34.